home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 30 / PC Gamer IT CD 30 1-2.iso / MOTS / GAMEDATA / RESOURCE / JKMRES.GOO / cog_item_keyimperial.cog < prev    next >
Text File  |  1998-02-25  |  577b  |  39 lines

  1. # Jedi Knight Cog Script
  2. #
  3. # ITEM_KEYIMPERIAL.COG
  4. #
  5. # INVENTORY script - Imperial Key
  6. # Bin 43
  7. #
  8. # [YB]
  9. #
  10. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  11.  
  12.  
  13. symbols
  14.  
  15. sound       keysound=BactaUse01.WAV
  16. thing       player
  17.  
  18. message     activated
  19.  
  20. end
  21.  
  22. # ========================================================================================
  23.  
  24. code
  25.  
  26. activated:
  27.    player = GetSourceRef();
  28.    // Print("This is the Imperial Key...");
  29.    jkPrintUNIString(player, 268);
  30.    PlaySoundLocal(keysound, 1.0, 0.0, 0 );
  31.  
  32.    Return;
  33.  
  34. end
  35.  
  36.  
  37.  
  38.  
  39.